19 lines
No EOL
521 B
C++
19 lines
No EOL
521 B
C++
#pragma once
|
|
|
|
#include "objects/annotation.h"
|
|
#include "objects/base/instance.h"
|
|
#include <memory>
|
|
|
|
// The simplest instance
|
|
// Has no functionality of its own, used purely for organizational/grouping purposes
|
|
|
|
class DEF_INST_(explorer_icon="folder") Folder : public Instance {
|
|
AUTOGEN_PREAMBLE
|
|
|
|
public:
|
|
Folder();
|
|
~Folder();
|
|
|
|
static inline std::shared_ptr<Folder> New() { return std::make_shared<Folder>(); };
|
|
static inline std::shared_ptr<Instance> Create() { return std::make_shared<Folder>(); };
|
|
}; |