18 lines
212 B
C++
18 lines
212 B
C++
#ifndef __EntryPoint_h__
|
|
#define __EntryPoint_h__
|
|
|
|
namespace http {
|
|
|
|
class EntryPoint {
|
|
|
|
public:
|
|
coreutils::MString url;
|
|
coreutils::MString flowName;
|
|
Flow flow;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|