53 lines
2.0 KiB
C++
53 lines
2.0 KiB
C++
// Filename: parameterRemapBasicStringRefToString.h
|
|
// Created by: drose (09Aug00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef PARAMETERREMAPBASICSTRINGREFTOSTRING_H
|
|
#define PARAMETERREMAPBASICSTRINGREFTOSTRING_H
|
|
|
|
#include "dtoolbase.h"
|
|
|
|
#include "parameterRemapToString.h"
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : ParameterRemapBasicStringRefToString
|
|
// Description : Maps a const reference to a basic_string<char> to an
|
|
// atomic string.
|
|
////////////////////////////////////////////////////////////////////
|
|
class ParameterRemapBasicStringRefToString : public ParameterRemapToString {
|
|
public:
|
|
ParameterRemapBasicStringRefToString(CPPType *orig_type);
|
|
|
|
virtual void pass_parameter(ostream &out, const string &variable_name);
|
|
virtual string get_return_expr(const string &expression);
|
|
};
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : ParameterRemapBasicWStringRefToWString
|
|
// Description : Maps a const reference to a basic_string<wchar_t> to an
|
|
// atomic string.
|
|
////////////////////////////////////////////////////////////////////
|
|
class ParameterRemapBasicWStringRefToWString : public ParameterRemapToWString {
|
|
public:
|
|
ParameterRemapBasicWStringRefToWString(CPPType *orig_type);
|
|
|
|
virtual void pass_parameter(ostream &out, const string &variable_name);
|
|
virtual string get_return_expr(const string &expression);
|
|
};
|
|
|
|
#endif
|