Samchon Framework for CPP  1.0.0
FTFactory.cpp
1 #include <samchon/library/FTFactory.hpp>
2 #include <samchon/library/FTFile.hpp>
3 
4 #include <samchon/Map.hpp>
5 #include <samchon/library/XML.hpp>
6 
7 
8 
9 using namespace std;
10 using namespace samchon::library;
11 
12 FTFactory::FTFactory()
13 {
14 }
15 
16 void FTFactory::registerInstance(FTInstance *instance)
17 {
18  instanceMap.set(instance->getUID(), instance);
19 }
An interface of file-tree.
Definition: FTInstance.hpp:22
auto getUID() const -> int
Get uid.
Definition: FTInstance.cpp:29
Definition: RWMutex.hpp:4
Package of libraries.
Definition: library.hpp:84