forked from PixarAnimationStudios/OpenUSD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
layerBase.h
78 lines (66 loc) · 2.55 KB
/
layerBase.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// Copyright 2016 Pixar
//
// Licensed under the Apache License, Version 2.0 (the "Apache License")
// with the following modification; you may not use this file except in
// compliance with the Apache License and the following modification to it:
// Section 6. Trademarks. is deleted and replaced with:
//
// 6. Trademarks. This License does not grant permission to use the trade
// names, trademarks, service marks, or product names of the Licensor
// and its affiliates, except as required to comply with Section 4(c) of
// the License and to reproduce the content of the NOTICE file.
//
// You may obtain a copy of the Apache License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the Apache License with the above modification is
// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the Apache License for the specific
// language governing permissions and limitations under the Apache License.
//
///
/// \file sdf/layerBase.h
///
///
#ifndef SDF_LAYER_BASE_H
#define SDF_LAYER_BASE_H
#include "pxr/base/tf/declarePtrs.h"
#include "pxr/base/tf/refBase.h"
#include "pxr/base/tf/weakBase.h"
#include <boost/noncopyable.hpp>
#include <map>
#include <string>
TF_DECLARE_WEAK_AND_REF_PTRS(SdfLayerBase);
TF_DECLARE_WEAK_AND_REF_PTRS(SdfFileFormat);
class SdfSchemaBase;
/// \class SdfLayerBase
///
/// Base class for all layer implementations. Holds a pointer to the file
/// format for the layer.
///
class SdfLayerBase : public TfRefBase, public TfWeakBase, boost::noncopyable
{
public:
/// Returns the file format used by this layer.
SdfFileFormatConstPtr GetFileFormat() const;
/// Type for specifying additional file format-specific arguments to
/// layer API.
typedef std::map<std::string, std::string> FileFormatArguments;
/// Returns the file format-specific arguments used during the construction
/// of this layer.
const FileFormatArguments& GetFileFormatArguments() const;
/// Returns the schema this layer adheres to. This schema provides details
/// about the scene description that may be authored in this layer.
virtual const SdfSchemaBase& GetSchema() const = 0;
protected:
SdfLayerBase(const SdfFileFormatConstPtr& fileFormat,
const FileFormatArguments& args = FileFormatArguments());
virtual ~SdfLayerBase();
private:
SdfFileFormatConstPtr _fileFormat;
FileFormatArguments _fileFormatArgs;
};
#endif // SDF_LAYER_BASE_H