24 lines
597 B
C
24 lines
597 B
C
|
#ifndef MODIFY_INTERPRETER_H
|
||
|
#define MODIFY_INTERPRETER_H
|
||
|
|
||
|
#include "ObjectInterpreter.h"
|
||
|
#include <vector>
|
||
|
#include <string>
|
||
|
#include <memory>
|
||
|
#include "DataManager.h"
|
||
|
|
||
|
class DATAMANAGER_DLL_API_EXPORTS DelInterpreter : public ObjectInterpreter {
|
||
|
public:
|
||
|
DelInterpreter();
|
||
|
|
||
|
void ExecuteCommand(std::vector<std::string> &commandLines, std::vector<Empty> &lst, std::vector<std::string>& names);
|
||
|
|
||
|
void sortList(std::vector<Empty> &lst);
|
||
|
|
||
|
vector<int> sortListByDependent(vector<int> lst);
|
||
|
|
||
|
bool IsDependentByID(int deriveID, int srcID);
|
||
|
|
||
|
private:
|
||
|
};
|
||
|
#endif // MODIFY_INTERPRETER_H
|