56 lines
1.2 KiB
C++
56 lines
1.2 KiB
C++
/*
|
|
* mdJSON.cpp
|
|
*
|
|
* Created on: Jan 28, 2014
|
|
* Author: jdaugherty
|
|
*/
|
|
|
|
#include "cliever-md.h"
|
|
#include "session/SessionFactory.hpp"
|
|
#include "session/SessionManagerProperties.hpp"
|
|
#include "session/Transaction.hpp"
|
|
#include "common/SystemProperties.hpp"
|
|
#include "session/Session.hpp"
|
|
#include "session/StatsManager.hpp"
|
|
#include "se/DomainCheckCommand.hpp"
|
|
#include "se/DomainCheckResponse.hpp"
|
|
#include "se/LPE/LPChkCmdExtension.hpp"
|
|
#include "se/LPE/LPChkRespExtension.hpp"
|
|
#include "se/LPE/LPCrtCmdExtension.hpp"
|
|
#include "se/LPE/LPCrtRespExtension.hpp"
|
|
#include "se/TransferOp.hpp"
|
|
#include "se/IntPostalInfo.hpp"
|
|
#include "se/ContactCreateCommand.hpp"
|
|
#include "se/ContactCreateResponse.hpp"
|
|
#include "se/DomainCreateCommand.hpp"
|
|
#include "se/DomainCreateResponse.hpp"
|
|
#include "se/DomainTransferApproveCommand.hpp"
|
|
#include "se/DomainTransferRequestCommand.hpp"
|
|
#include "se/DomainTransferResponse.hpp"
|
|
#include "mdJSON.hpp"
|
|
|
|
using namespace std;
|
|
|
|
mdJSON::mdJSON(char *fileName) {
|
|
|
|
script = string(fileName);
|
|
|
|
}
|
|
|
|
mdJSON::~mdJSON() {
|
|
// TODO Auto-generated destructor stub
|
|
}
|
|
|
|
mdJSON::mdJSON(char *script) {
|
|
|
|
}
|
|
bool mdJSON::run() {
|
|
|
|
}
|
|
bool mdJSON::didParseOK() {
|
|
|
|
|
|
done: return true;
|
|
}
|
|
|