C/C++
cprog.asc
Associated article: Symantec C++ Professional
Tags: C/C++ Tools
_C PROGRAMMING COLUMN_
by Al Stevens
Listing One
// -------- editbox.h
#ifndef EDITBOX_H
#define EDITBOX_H
#include "textbox.h"
class EditBox : public TextBox {
void OpenWindow();
protected:
int column; // Current column
Bool changed; // True if text has changed
...


