Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Kind] Remove unnecessary boost #630

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions pxr/usd/lib/kind/registry.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
#include "pxr/base/tf/staticTokens.h"
#include "pxr/base/tf/token.h"

#include <boost/noncopyable.hpp>
#include <unordered_map>
#include <vector>

Expand Down Expand Up @@ -68,9 +67,13 @@ TF_DECLARE_PUBLIC_TOKENS(KindTokens, KIND_API, KIND_TOKENS);
/// To make this robust, KindRegistry exposes no means to mutate the registry.
/// All extensions must be accomplished via plugInfo.json files, which are
/// consumed once during the registry initialization (See \ref kind_extensions )
class KindRegistry : public TfWeakBase, boost::noncopyable
class KindRegistry : public TfWeakBase
{
public:
// Disallow copies
KindRegistry(const KindRegistry&) = delete;
KindRegistry& operator=(const KindRegistry&) = delete;

/// Return the single \c KindRegistry instance.
KIND_API static KindRegistry& GetInstance();

Expand Down