blob: cafe977b6fe37d2372489b3579c41afb5c2159b2 [file] [log] [blame]
#pragma once
#ifndef GEODE_CPPCACHELIBRARY_H_
#define GEODE_CPPCACHELIBRARY_H_
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <string>
#include <geode/internal/geode_globals.hpp>
namespace apache {
namespace geode {
namespace client {
// initialize GEODE runtime if it has not already been initialized.
class APACHE_GEODE_EXPORT CppCacheLibrary {
public:
// Call to this to trigger initialization.
static void initLib(void);
// Call to this to trigger cleanup. initLib and closeLib calls must be in
// pairs.
static void closeLib(void);
// Returns pathname of product's lib directory, adds 'addon' to it if 'addon'
// is not null.
static std::string getProductLibDir(const char* addon);
// Returns the directory where the library/DLL resides
static std::string getProductLibDir();
static std::string getProductDir();
};
} // namespace client
} // namespace geode
} // namespace apache
#endif // GEODE_CPPCACHELIBRARY_H_