Samchon Framework for CPP  1.0.0
FTByteFile.hpp
1 #pragma once
2 #include <samchon/API.hpp>
3 
4 #include <samchon/library/FTFile.hpp>
5 
6 #include <samchon/ByteArray.hpp>
7 
8 namespace samchon
9 {
10 namespace library
11 {
22  class SAMCHON_FRAMEWORK_API FTByteFile
23  : public FTFile
24  {
25  private:
26  typedef protocol::Entity FTFile;
27 
28  protected:
33 
34  public:
39  virtual ~FTByteFile() = default;
40 
44  auto getData()->ByteArray;
45  };
46 };
47 };
An entity, a standard data class.
Definition: Entity.hpp:48
ByteArray data
Binary data of the file.
Definition: FTByteFile.hpp:32
Binary data class.
Definition: ByteArray.hpp:30
Top level namespace of products built from samchon.
Definition: ByteArray.hpp:7