blob: 8df490a9b60389a8de6aa5b406e07ab8f6f8e7cb [file] [log] [blame]
/*=========================================================================
* Copyright (c) 2010-2014 Pivotal Software, Inc. All Rights Reserved.
* This product is protected by U.S. and international copyright
* and intellectual property laws. Pivotal products are covered by
* one or more patents listed at http://www.pivotal.io/patents.
*=========================================================================
*/
#ifndef EXAMPLETESTXML_HPP_
#define EXAMPLETESTXML_HPP_
#include <gfcpp/gf_types.hpp>
#include "gfcpp/GemfireCppCache.hpp"
using namespace gemfire;
class ExampleTestXml
{
public:
ExampleTestXml();
~ExampleTestXml();
void startServer();
void startLocator();
void stopLocator();
void stopServer();
void connectToDS();
void initCache();
void initCache_7_3();
void initCache_3_1();
void initCache_2_1();
void cleanUp();
void example_3_1();
void example_7_3();
void example_9_13();
void example_13_1();
void example_2_1();
public:
CacheFactoryPtr cacheFactoryPtr; // for examples.
CachePtr cachePtr; //for examples.
RegionPtr regionPtr; //for examples.
};
#endif /* EXAMPLETESTXML_HPP_ */