// $Revision: 1.3 $ // Copyright (c) 1994-1995 Taligent, Inc. All Rights Reserved. #ifndef TaligentSamples_KEYINPUTVIEW #include "KeyInputView.h" #endif #ifndef TaligentSamples_KEYFILTERBEHAVIOR #include "KeyFilterBehavior.h" #endif #ifndef TaligentSamples_SAMPLEWINDOWPROGRAM #include "SampleWindowProgram.h" #endif #ifndef Taligent_STANDARDTEXT #include #endif void main(int argc, char* argv[]) { TKeyInputView* view = new TKeyInputView(TGPoint(200, 50)); view->AdoptBehavior(new TKeyFilterBehavior); TSampleWindowProgram program(view, TStandardText(argv[0])); program.Run(); }