MCPcopy Create free account
hub / github.com/charto/nbind / ArgStorage

Class ArgStorage

include/nbind/ArgStorage.h:13–26  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

11// http://stackoverflow.com/questions/31091223/placement-new-return-by-value-and-safely-dispose-temporary-copies
12
13class ArgStorage {
14
15public:
16
17 ArgStorage(unsigned int overloadNum) :
18 overloadNum(overloadNum) {}
19
20 unsigned int getOverloadNum() const { return(overloadNum); }
21
22private:
23
24 const unsigned int overloadNum;
25
26};
27
28template <typename Bound>
29class TemplatedArgStorage : public ArgStorage {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected