Go to the source code of this file.
◆ ClassImp()
- Author
- Nils Krumnack
Definition at line 21 of file SampleMeta.cxx.
24{
25 void SampleMeta ::
26 testInvariant () const
27 {
28 }
29
30
31
32 SampleMeta ::
33 SampleMeta ()
34 : Sample ("unnamed")
35 {
37 }
38
39
40
41 SampleMeta ::
42 SampleMeta (const std::string& name)
44 {
46 }
47
48
49
50 std::size_t SampleMeta ::
51 getNumFiles () const
52 {
54
55 return 0;
56 }
57
58
59
60 std::string SampleMeta ::
61 getFileName (std::size_t ) const
62 {
64 RCU_THROW_MSG (
"fileName() should not be called on SampleMeta");
65 return "";
66 }
67
68
69
70 std::unique_ptr<SampleLocal> SampleMeta ::
71 doMakeLocal () const
72 {
74 RCU_THROW_MSG (
"makeLocal() should not be called on SampleMeta");
75 return {};
76 }
77
78
79
80 std::vector<std::string> SampleMeta ::
81 doMakeFileList () const
82 {
84
85 std::vector<std::string>
result;
87 }
88}
#define RCU_NEW_INVARIANT(x)
#define RCU_READ_INVARIANT(x)
#define RCU_THROW_MSG(message)