• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/

Lines Matching defs:class

12 \section{\class{wxArray}}\label{wxarray}
37 wxBaseArray class which works with untyped data and can not be used directly.
39 WX\_DEFINE\_OBJARRAY() are used to define a new class deriving from it. The
42 exist, each time you use one of WX\_DEFINE\_XXXARRAY macro you define a class
53 because wxArrays are used by wxWidgets internally. This class has one serious
60 wxArrayDouble class is scheduled for the next release of wxWidgets).
75 wxObjArray class treats its elements like "objects". It may delete them when
79 declare the new wxObjArray class using WX\_DECLARE\_OBJARRAY() macro and then
81 <wx/arrimpl.cpp> and define the array class with WX\_DEFINE\_OBJARRAY() macro
83 elements class is in scope. As it probably sounds very complicated here is an
89 // we must forward declare the array because it is used inside the class
91 class MyDirectory;
92 class MyFile;
99 class MyDirectory
156 To use an array you must first define the array class. This is done with the
157 help of the macros in this section. The class of array elements must be (at
288 This macro defines a new array class named {\it name} and containing the
298 class MyClass;
313 This macro defines a new sorted array class named {\it name} and containing
323 class MyClass;
327 You will have to initialize the objects of this class by passing a comparison
355 This macro declares a new object array class named {\it name} and containing
363 class MyClass;
368 the array class - otherwise you would get link errors.
378 This macro defines the methods of the array class {\it name} not defined by the
381 declaration of the class of array elements in scope! If you forget to do the
384 objects of the class will not be copied correctly and their real destructor will
391 // first declare the class!
392 class MyClass