blob: b3427bc6e49dd5f02798e72ce6c5515e87759e5b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2009 Nokia and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Nokia - Initial API and implementation
*******************************************************************************/
#ifndef MEMORYSERVICE_H
#define MEMORYSERVICE_H
#include "TCFService.h"
struct Channel;
struct Protocol;
class MemoryService: public TCFService {
public:
MemoryService(Protocol * proto);
~MemoryService(void);
const char* GetName();
static void command_get_context(const char * token, Channel * c);
static void command_get_children(const char * token, Channel * c);
static void command_set(const char * token, Channel * c);
static void command_get(const char * token, Channel * c);
static void command_fill(const char * token, Channel * c);
};
#endif