Samchon Framework for CPP  1.0.0
XMLList.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <vector>
5 #include <memory>
6 
7 namespace samchon
8 {
9 namespace library
10 {
11  class SAMCHON_FRAMEWORK_API XML;
12 
19  typedef std::vector<std::shared_ptr<XML>> XMLList;
20 
21  SAMCHON_FRAMEWORK_EXTERN template class SAMCHON_FRAMEWORK_API std::vector<std::shared_ptr<XML>>;
22 };
23 };
std::vector< std::shared_ptr< XML > > XMLList
A list of XML, tags are same.
Definition: XMLList.hpp:19
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7