blob: 35794a35f724fa2a13d37612b3a7a9f715b06c68 [file] [log] [blame]
/*
* 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.
*/
#pragma once
#ifndef GEODE_DATAOUTPUTINTERNAL_H_
#define GEODE_DATAOUTPUTINTERNAL_H_
#include <geode/DataOutput.hpp>
#include <geode/PoolManager.hpp> // TODO remove
#include "CacheImpl.hpp" // TODO remove
namespace apache {
namespace geode {
namespace client {
class CacheImpl;
class DataOutputInternal : public DataOutput {
public:
DataOutputInternal() : DataOutput(nullptr, nullptr) {}
explicit DataOutputInternal(CacheImpl* cache) : DataOutput(cache, nullptr) {}
inline static Pool* getPool(const DataOutput& dataOutput) {
return dataOutput.getPool();
}
};
} // namespace client
} // namespace geode
} // namespace apache
#endif // GEODE_DATAOUTPUTINTERNAL_H_