代码搜索:CString
找到约 10,000 项符合「CString」的源代码
代码结果 10,000
www.eeworm.com/read/106257/15642481
cpp xlines.cpp
#include "StdAfx.h"
#include "XLines.h"
XLines::XLines()
{
}
XLines::~XLines()
{
}
int XLines::Append (const XLine& obj)
{
//push_back(obj);
(*this) [obj.name] = obj;
return (i
www.eeworm.com/read/106257/15642487
h xspot.h
#pragma once
#include
using namespace Gdiplus;
#include
using namespace std;
class XTube;
enum SpotTypeEnum
{
STE_NULL,
STE_LEFT,
STE_RIGHT,
STE_CIRCLE,
STE_SM
www.eeworm.com/read/106257/15642489
h xneobus.h
#pragma once
#include "XLines.h"
class XNeobus
{
public:
XNeobus();
virtual ~XNeobus();
int ToXML (CMarkup& markup);
int FromXML (CMarkup& markup);
public:
XLines lines;
public
www.eeworm.com/read/106257/15642500
cpp xneobus.cpp
#include "StdAfx.h"
#include "XNeobus.h"
XNeobus::XNeobus(void)
{
}
XNeobus::~XNeobus(void)
{
}
int XNeobus::ToXML (CMarkup& markup)
{
lines.ToXML(markup);
return 0;
}
int XNeo
www.eeworm.com/read/106257/15642507
h xlines.h
#pragma once
#include "XLine.h"
#include "XStations.h"
#include "XPath.h"
class XLines : public map
{
public:
XLines();
virtual ~XLines();
public:
XStations allStat
www.eeworm.com/read/106257/15642510
h xpathfinder.h
#pragma once
#include "XPath.h"
#include "XMapCtrl.h"
class XPathFinder
{
public:
XPathFinder();
virtual ~XPathFinder();
public:
XStations stations;
XLines lines;
public:
vect
www.eeworm.com/read/106257/15642511
cpp xstation.cpp
#include "StdAfx.h"
#include "XStation.h"
#include "XStations.h"
XStation::XStation()
{
name = "";
position.X = 0.0;
position.Y = 0.0;
}
XStation::~XStation()
{
}
int XStation::
www.eeworm.com/read/106257/15642513
h xstations.h
#pragma once
#include "XStation.h"
class XStations : public map
{
public:
XStations();
virtual ~XStations();
public:
int Append (const XStation& obj);
int Remo
www.eeworm.com/read/106227/15643214
h msacc8.h
// Machine generated IDispatch wrapper class(es) created with ClassWizard
/////////////////////////////////////////////////////////////////////////////
// IDoCmd wrapper class
class IDoCmd : publ
www.eeworm.com/read/106224/15643329
h autofont.h
//CAutoFont class definition
//
//This class will simplify the creation and use of the CFont object
//By Jamie Nordmeyer
//Modified by jingzhou xu
#ifndef AUTOFONT
#define AUTOFONT
class CA