sic/src/DynamicObjects.H

25 lines
482 B
C++
Raw Normal View History

2014-02-15 12:26:28 +01:00
#pragma once
#include <mongoose.h>
#include "Routerin.H"
2014-05-01 21:27:06 +02:00
#include "sicccobject.H"
2014-02-15 12:26:28 +01:00
#include <string>
2014-05-01 21:27:06 +02:00
#include <vector>
2014-02-15 12:26:28 +01:00
class Routerin;
2014-02-15 12:26:28 +01:00
class DynamicObjects
{
public:
std::string render_object_list();
std::string cleanpath(const char * const);
2014-05-01 19:56:48 +02:00
DynamicObjects(Routerin * merouterin) : m_merouterin(merouterin){ };
2014-02-15 12:26:28 +01:00
~DynamicObjects() {};
private:
std::string _cleanpath (const char * const path);
2014-05-01 21:52:49 +02:00
std::vector<Sicccobject> m_themap;
2014-05-01 19:56:48 +02:00
const Routerin * m_merouterin;
2014-02-15 12:26:28 +01:00
};