This file is indexed.

/usr/include/Puma/Config.h is in libpuma-dev 1:2.1-2+b1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
#ifndef __ac_FIRST__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1__
#define __ac_FIRST__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1__
#define __ac_FIRST_FILE__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_inc_Puma_Config_h__
#ifndef __ac_have_predefined_includes__
#define __ac_have_predefined_includes__
#endif // __ac_have_predefined_includes__

#ifndef __ac_h_
#define __ac_h_
#ifdef __cplusplus
namespace AC {
  typedef const char* Type;
  enum JPType { CALL = 131072, EXECUTION = 8388608, CONSTRUCTION = 16777216, DESTRUCTION = 33554432 };
  enum Protection { PROT_NONE, PROT_PRIVATE, PROT_PROTECTED, PROT_PUBLIC };
  enum Specifiers { SPEC_NONE = 0x0 , SPEC_STATIC = 0x1, SPEC_MUTABLE = 0x2, SPEC_VIRTUAL = 0x4 };
  struct Action {
    void **_args; void *_result; void *_entity; void *_target; void *_that; void *_fptr;
    void (*_wrapper)(Action &);
    inline void trigger () { _wrapper (*this); }
  };
  struct AnyResultBuffer {};
  template <typename T> struct ResultBuffer : public AnyResultBuffer {
    struct { char _array[sizeof (T)]; } _data;
    ~ResultBuffer () { ((T&)_data).T::~T(); }
    operator T& () const { return (T&)_data; }
  };
  template <typename T, typename N> struct TL {
    typedef T type; typedef N next; enum { ARGS = next::ARGS + 1 };
  };
  struct TLE { enum { ARGS = 0 }; };
  template <typename T> struct Referred { typedef T type; };
  template <typename T> struct Referred<T &> { typedef T type; };
  template <typename TL, int I> struct Arg {
    typedef typename Arg<typename TL::next, I - 1>::Type Type;
    typedef typename Referred<Type>::type ReferredType;
  };
  template <typename TL> struct Arg<TL, 0> {
    typedef typename TL::type Type;
    typedef typename Referred<Type>::type ReferredType;
  };
  template <typename T> int ttest(...);
  template <typename T> char ttest(typename T::__TI const volatile *);
  template<typename T> struct HasTypeInfo {
    enum { RET=((sizeof(ttest<T>(0))==1)?1:0) };
  };
  template<typename T, int HAVE = HasTypeInfo<T>::RET> struct TypeInfo {
    enum { AVAILABLE = 0, BASECLASSES = 0, MEMBERS = 0, FUNCTIONS = 0,
           CONSTRUCTORS = 0, DESTRUCTORS = 0 };
    typedef T That;
  };
  template<typename T> struct TypeInfo<T, 1> : T::__TI {
    enum { AVAILABLE = 1 };
  };
  template<typename T> struct RT {};
  template<typename T> RT<T> rt_deduce (const T&) { return RT<T>(); }
  struct Cnv { template<typename T> operator RT<T>() const { return RT<T>(); }};
  #define __AC_TYPEOF(expr) (1?AC::Cnv():AC::rt_deduce(expr))
  template <class Aspect, int Index>
  struct CFlow {
    static int &instance () {
      static int counter = 0;
      return counter;
    }
    CFlow () { instance ()++; }
    ~CFlow () { instance ()--; }
    static bool active () { return instance () > 0; }
  };
}
inline void * operator new (__SIZE_TYPE__, AC::AnyResultBuffer *p) { return p; }
inline void operator delete (void *, AC::AnyResultBuffer *) { } // for VC++
#endif // __cplusplus
#endif // __ac_h_
class CCExprResolve;
class CExprResolve;
class SyntaxState;
class SyntaxBuilder;
class LookAhead;
class CBuilderExtension;
class CLookAhead;
class CSemBinding;
class CCBuilderExtension;
class CCLookAhead;
class CCSemBinding;
class WinIfExists;
class WinImportHandler;
class WinMacros;
class WinAsm;
class WinDeclSpecs;
class WinMemberExplSpec;
class WinTypeKeywords;
class WinFriend;
class WinKeywords;
class ExtAC;
class ExtACTree;
class ExtGnu;
class ExtGnuCTree;
class ExtGnuKeywords;
class PragmaOnceUnitState;
class PragmaOnce;
#endif // __ac_FIRST__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1__
// This file is part of PUMA.
// Copyright (C) 1999-2015  The PUMA developer team.
//
// This program is free software;  you can redistribute it and/or
// modify it under the terms of the GNU General Public License as
// published by the Free Software Foundation; either version 2 of
// the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public
// License along with this program; if not, write to the Free
// Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
// MA  02111-1307  USA

#ifndef PUMA_Config_H
#define PUMA_Config_H

/** \file
 *  Configuration information from file or command line. */

/** \page configuration Configuration Options
 *
 * Several aspects of the functionality of PUMA can be configured using command line 
 * options or a configuration file. The following configuration options are understood 
 * by the library.
 * 
 * ### File Handling Options
 * 
 * | Option | Description
 * |----------------------|-----------------------
 * | -p, --path PATH | Add a project source directory
 * | -d, --dest PATH | Add a destination folder for modified sources
 * | -w, --write-protected PATH | Add a write protected project directory
 * | -e, --extension STRING | Set the extension for source files
 * | -s, --suffix STRING | Set the suffix for output files
 * | --config FILE | Load configuration options from a file
 * | --system-config FILE | Load low precedence configuration options from a file
 * | --save-new-suffix | Append new suffix on existing files when saving
 * | --save-overwrite | Overwrite existing files when saving
 * | --save-rename-old | Rename existing files when saving
 * 
 * ### Preprocessor Options
 * 
 * | Option | Description
 * |----------------------|-----------------------
 * | -A PREDICATE(ANSWER) | Assert a preprocessor predicate, e.g. -Asystem(linux)
 * | -D NAME[=BODY] | Define a preprocessor macro, e.g. -DSYSTEM=linux or -D DEBUG
 * | -U NAME | Undefine a preprocessor macro, e.g. -U SYSTEM
 * | -I PATH | Add a non-system include directory
 * | --isystem PATH | Add a system include directory
 * | --include FILE | Include the given file at the beginning of each source file
 * | --lock-macro NAME[=BODY] | Define an immutable preprocessor macro
 * | --inhibit-macro NAME | Add the name of a macro whose definition will be ignored
 * 
 * ### General %Parser Options
 * 
 * | Option | Description
 * |----------------------|-----------------------
 * | --lang-c | Set input language to C
 * | --lang-ec++ | Set input language to Embedded C++
 * | --lang-c++ | Set input language to C++
 * | --size-type TYPE | Set the internal type for size_t
 * | --ptrdiff-type TYPE | Set the internal type for ptrdiff_t
 * | --target TRIPLE | Set target triple which determines sizes and alignments for built-in types
 * | --builtin-type-traits | Enable built-in type traits
 * | --verbose-errors | Enable verbose error messages
 * | --match-expr | Enable match expression language extensions
 * 
 * ### Extended %Parser Options
 * 
 * | Option | Description
 * |----------------------|-----------------------
 * | --skip-bodies-all | Don't parse function bodies
 * | --skip-bodies-tpl | Don't parse function bodies of templates
 * | --skip-bodies-non-prj | Don't parse function bodies in non-project files
 * | --skip-bodies-non-prim | Don't parse function bodies in non-primary files
 * | --pseudo-instances | Simplified template instantiation scheme (deprecated)
 * | --inst-fct-bodies | Enable function template body instantiation
 * | --template-depth DEPTH | Set the maximum instantiation depth for templates
 * 
 * ### VisualC++ Extension Options
 * 
 * | Option | Description
 * |----------------------|-----------------------
 * | --vc | Enable VisualC++ language extensions
 * | --import-handler FILE | Set a handler for resolving \#import directives
 * 
 * ### GNU C/C++ Extension Options
 * 
 * | Option | Description
 * |----------------------|-----------------------
 * | --gnu [VERSION] | Enable all GNU C/C++ language extensions (optionally version dependent)
 * | --gnu-nested-fct | Enable GNU C/C++ nested functions
 * | --gnu-condition-scope | Enable GNU C/C++ condition scope
 * | --gnu-param-decl | Enable GNU C/C++ parameter declarator
 * | --gnu-fct-decl | Enable GNU C/C++ function declarator
 * | --gnu-param-scope | Enable GNU C/C++ function parameter scope
 * | --gnu-default-args | Enable GNU C/C++ function default arguments
 * | --gnu-extended-asm | Enable GNU C/C++ extended asm syntax
 * | --gnu-extended-expr | Enable GNU C/C++ extended expressions
 * | --gnu-long-long | Enable GNU C/C++ long long type
 * | --gnu-int128 | Enable GNU type __int128 extension
 * | --gnu-name-scope | Enable GNU C/C++ name scope
 * | --gnu-implicit-int | Enable GNU implicit int extension
 * | --gnu-fct-attribute | Enable GNU C/C++ function attributes
 * | --gnu-if-then-expr | Enable GNU C/C++ if-then expression syntax
 * | --gnu-std-hack | Enable GNU C/C++ implicit namespace std hack
 * | --gnu-friend-injection | Enable GNU friend injection extension
 * | --gnu-pic24 | Enable GNU PIC24 and dsPIC extension
 * 
 * ### C++1x Extension Options
 * 
 * | Option | Description
 * |----------------------|-----------------------
 * | --c++1x | Enable all C++1x language extensions
 * | --c++1x-static-assert | Enable C++1x static assertions
 * 
 * ### Configuration Files
 * 
 * All command line options can also be specified in a configuration file. 
 * Each option in the configuration file has to start on a new line.
 * 
 * \code{.py}
 * -D i386
 * -D linux
 * -I /usr/include
 * \endcode
 * 
 * Lines beginning with # are interpreted as comments and will be ignored.
 * 
 * \code{.py}
 * ### defines
 * -D i386
 * -D linux
 * ### includes
 * -I /usr/include
 * -I /usr/local/include
 * \endcode
 *
 * Arguments of options containing spaces have to be enclosed in double-quotes. 
 * Double-quotes in the argument have to be escaped.
 * 
 * \code{.py}
 * -D __PTRDIFF_TYPE__=int
 * -D "__SIZE_TYPE__=unsigned int"
 * -D "__VERSION__=\"4.1.0 (Linux)\""
 * \endcode
 * 
 * All occurrences of ${Name} in the configuration file are interpreted as environment 
 * variables and replaced by their values, or by nothing if the variable is not defined. 
 * To avoid variable replacement, $ has to be escaped.
 * 
 * \code{.py}
 * -I ${LIBDIR}/include
 * -D OS_STR=\"${OSTYPE}\"
 * ### same as: #define OS_STR "linux"
 * -D OS_VAR=\"\${OSTYPE}\"
 * ### same as: #define OS_VAR "${OSTYPE}"
 * \endcode
 *
 * The default PUMA configuration file location is /etc/puma.config. It can be overwritten
 * by setting the environment variable PUMA_CONFIG like this:
 *
 * \code{.py}
 * export PUMA_CONFIG=/usr/local/lib/Puma/puma.config
 * \endcode
 *
 * Use class Puma::Config to load the configuration in the correct order from the
 * command line or a configuration file.
 */

#include "Puma/ConfOption.h"
#include "Puma/ErrorStream.h"
#include "Puma/OptsParser.h"
#include "Puma/StrCol.h"
#include <iostream>
#include <string>
#include <vector>
#include <map>

namespace Puma {

/** \class Config Config.h Puma/Config.h
 * Load and hold PUMA configuration options in the correct order
 * from the command line or a configuration file.
 * \ingroup common */
class Config {
#line 293 "/build/aspectc++-ihI6BU/aspectc++-2.1/Puma/gen-release/step2/inc/Puma/Config.h"
public:
  template <typename, int = 0> struct __BYPASS_ZN4Puma6ConfigE {};
  template <typename, int> friend struct __BYPASS_ZN4Puma6ConfigE;
private:
#line 191 "/build/aspectc++-ihI6BU/aspectc++-2.1/Puma/gen-release/step1/inc/Puma/Config.h"

#line 191 "/build/aspectc++-ihI6BU/aspectc++-2.1/Puma/gen-release/step1/inc/Puma/Config.h"

  typedef std::vector<const ConfOption *> OptionList;
  typedef std::map<unsigned int, const ConfOption*> OptionMap;

  ErrorStream &m_err;
  OptionList m_sysopts;
  OptionList m_useropts;
  OptionList m_sysincls;
  OptionMap m_optnamemap;
  bool m_system;

  static unsigned int OPT_I_HASH;
  static unsigned int OPT_ISYSTEM_HASH;

public:
  /** Configuration option types. */
  enum OPTIONS {
    /** \cond internal */
    PRE_ASSERT = 1,
    PRE_DEFINE,
    PRE_UNDEFINE,
    PRE_LOCK_MACRO,
    PRE_INCLUDE,
    CFG_FILE,
    SYS_CFG_FILE,
    PROJ_PATH,
    PROJ_DESTINATION,
    SET_SUFFIX,
    SET_EXTENSION,
    SET_WRITE_PROTECTED,
    GNU,
    /** \endcond */
    /** Option without argument. */
    SET_OPTION,
    /** Option with argument. */
    SET_OPTION_ARG
  };

public:
  /** Constructor.
   * \param err The error stream to use. */
  Config(ErrorStream &err);
  /** Constructor. Read the given configuration file. See Read()
   * for details.
   * \param err The error stream to use.
   * \param path Path to the configuration file, or NULL. */
  Config(ErrorStream &err, const char *path);
  /** Constructor. Read configuration options from the command
   * line. See Read() for details.
   * \param err The error stream to use.
   * \param argc The number of command line arguments.
   * \param argv The command line arguments. */
  Config(ErrorStream &err, int &argc, char **&argv);
  /** Constructor. Read the configuration from a configuration
   * file and the command line. See Read() for details.
   * \param err The error stream to use.
   * \param path Path to the configuration file, or NULL.
   * \param argc The number of command line arguments.
   * \param argv The command line arguments. */
  Config(ErrorStream &err, const char *path, int &argc, char **&argv);
  /** Copy-constructor.
   * \param copy The configuration to copy. */
  Config(const Config &copy);
  /** Destroy this configuration object. */
  ~Config();

  /** Join this configuration with another.
   * \param other The configuration to join with. */
  void Join(const Config &other);

  /** Read the given configuration file, or the file given in
   * PUMA_CONFIG environment variable if path is NULL, or
   * /etc/puma.config otherwise.
   * \param path The path to the configuration file, or NULL. */
  void Read(const char *path = (const char *) 0);
  /** Read configuration options from the command line and remove
   * all recognized options from the command line.
   * \param argc The number of command line arguments.
   * \param argv The command line arguments. */
  void Read(int &argc, char **&argv);

  /** Add a configuration option to the configuration.
   * \param option The option to add. */
  void Add(const ConfOption *option);
  /** Add a configuration option to the configuration.
   * \param option The option to add.
   * \param system True if this option shall be added as a system priority option. */
  void Add(const char *option, bool system = false);
  /** Add a configuration option to the configuration.
   * \param option The option to add.
   * \param arg The argument or the option.
   * \param system True if this option shall be added as a system priority option. */
  void Add(const char *option, const char *arg, bool system = false);
  /** Add a configuration option to the configuration.
   * \param option The option to add.
   * \param arg1 The first argument or the option.
   * \param arg2 The second argument or the option.
   * \param system True if this option shall be added as a system priority option. */
  void Add(const char *option, const char *arg1, const char *arg2, bool system = false);

  /** Remove an option from the configuration.
   * \param option The option to remove. */
  void Remove(const ConfOption *option);

  /** Get the number options collected.
   * \return The number of options in this configuration. */
  unsigned Options() const;
  /** Get the n-th option in this configuration.
   * \param n The index of the option to get.
   * \return A pointer to the option. */
  const ConfOption *Option(unsigned n) const;
  /** Get a specific option in this configuration.
   * \param option The name of the option to get.
   * \return A pointer to the option. */
  const ConfOption *Option(const char *option) const;

  /** Check if a configuration file is given on the command line.
   * \param argc The number of command line arguments.
   * \param argv The command line arguments.
   * \return True if a custom configuration file is given on the command line. */
  bool CustomConfigFile(int argc, char **argv);

  /** Check if a system configuration file (lower priority options) is given
   * on the command line.
   * \param argc The number of command line arguments.
   * \param argv The command line arguments.
   * \return True if a system custom configuration file is given on the command line. */
  bool CustomSystemConfigFile(int argc, char **argv);

  /** Print the given option on an output stream.
   * \param option The option to print.
   * \param os The output stream. */
  void PrintOption(OptsParser::Option& option, std::ostream& os) const;
  /** Print the collected options on the given output stream.
   * \param os The output stream. */
  void PrintOptions(std::ostream& os) const;

private:
  bool Valid(const char *, const char * = (const char *) 0) const;

  bool Process(OptsParser&, bool unescape = false);
  bool ProcessAssert(const std::string&);
  bool ProcessDefine(const std::string&);
  bool ProcessLockMacro(const std::string&);
  bool ProcessUndefine(const std::string&);
  bool ProcessConfigFile(const std::string&, const std::string&);
  bool ProcessSystemConfigFile(const std::string&, const std::string&);
  bool ProcessArgument(const std::string&, const std::string&);
  bool ProcessOptionalArgument(const std::string&, const std::string&);
  bool ProcessPathArgument(const std::string&, const std::string&);

  std::string Unescape(const std::string&);

  void Remove(const ConfOption *, OptionList& options);
#line 455 "/build/aspectc++-ihI6BU/aspectc++-2.1/Puma/gen-release/step2/inc/Puma/Config.h"

  friend class ::CCExprResolve;
  friend class ::CExprResolve;
  friend class ::SyntaxState;
  friend class ::SyntaxBuilder;
  friend class ::LookAhead;
  friend class ::CBuilderExtension;
  friend class ::CLookAhead;
  friend class ::CSemBinding;
  friend class ::CCBuilderExtension;
  friend class ::CCLookAhead;
  friend class ::CCSemBinding;
  friend class ::WinIfExists;
  friend class ::WinImportHandler;
  friend class ::WinMacros;
  friend class ::WinAsm;
  friend class ::WinDeclSpecs;
  friend class ::WinMemberExplSpec;
  friend class ::WinTypeKeywords;
  friend class ::WinFriend;
  friend class ::WinKeywords;
  friend class ::ExtAC;
  friend class ::ExtACTree;
  friend class ::ExtGnu;
  friend class ::ExtGnuCTree;
  friend class ::ExtGnuKeywords;
  friend class ::PragmaOnceUnitState;
  friend class ::PragmaOnce;

#line 345 "/build/aspectc++-ihI6BU/aspectc++-2.1/Puma/gen-release/step1/inc/Puma/Config.h"

#line 345 "/build/aspectc++-ihI6BU/aspectc++-2.1/Puma/gen-release/step1/inc/Puma/Config.h"
};

inline Config::Config(ErrorStream &e) :
    m_err(e), m_system(false) {
}
inline Config::Config(const Config &c) :
    m_err(c.m_err), m_system(false) {
  Join(c);
}

inline Config::Config(ErrorStream &e, const char *file) :
    m_err(e), m_system(false) {
  Read(file);
}
inline Config::Config(ErrorStream &e, int &argc, char **&argv) :
    m_err(e), m_system(false) {
  Read(argc, argv);
}
inline Config::Config(ErrorStream &e, const char *file, int &argc, char **&argv) :
    m_err(e), m_system(false) {
  Read(file);
  Read(argc, argv);
}

inline void Config::Add(const char *n, bool system) {
  Add(new ConfOption(n, system));
}
inline void Config::Add(const char *n, const char *a1, bool system) {
  Add(new ConfOption(n, a1, system));
}
inline void Config::Add(const char *n, const char *a1, const char *a2, bool system) {
  Add(new ConfOption(n, a1, a2, system));
}

} // namespace Puma

#endif /* PUMA_Config_H */

#ifdef __ac_FIRST_FILE__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_inc_Puma_Config_h__
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCExprResolveCC_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCExprResolveCC_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCExprResolveCC_ah__
#include "Puma/CCExprResolveCC.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCExprResolveH_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCExprResolveH_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCExprResolveH_ah__
#include "Puma/CCExprResolveH.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CExprResolveCC_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CExprResolveCC_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CExprResolveCC_ah__
#include "Puma/CExprResolveCC.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CExprResolveH_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CExprResolveH_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CExprResolveH_ah__
#include "Puma/CExprResolveH.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxState_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxState_ah__
#include "Puma/SyntaxState.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#include "Puma/SyntaxBuilder.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#include "Puma/SyntaxBuilder.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_LookAhead_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#include "Puma/SyntaxBuilder.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_LookAhead_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_LookAhead_ah__
#include "Puma/LookAhead.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CBuilderExtension_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CBuilderExtension_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CBuilderExtension_ah__
#include "Puma/CBuilderExtension.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CLookAhead_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CLookAhead_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CLookAhead_ah__
#include "Puma/CLookAhead.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CSemBinding_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#include "Puma/SyntaxBuilder.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CSemBinding_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CSemBinding_ah__
#include "Puma/CSemBinding.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtAC_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtAC_ah__
#include "Puma/ExtAC.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCBuilderExtension_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCBuilderExtension_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCBuilderExtension_ah__
#include "Puma/CCBuilderExtension.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCLookAhead_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCLookAhead_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCLookAhead_ah__
#include "Puma/CCLookAhead.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCSemBinding_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CLookAhead_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CLookAhead_ah__
#include "Puma/CLookAhead.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#include "Puma/SyntaxBuilder.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_LookAhead_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_LookAhead_ah__
#include "Puma/LookAhead.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCLookAhead_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCLookAhead_ah__
#include "Puma/CCLookAhead.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CSemBinding_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CSemBinding_ah__
#include "Puma/CSemBinding.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCSemBinding_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_CCSemBinding_ah__
#include "Puma/CCSemBinding.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinDeclSpecs_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinDeclSpecs_ah__
#include "Puma/WinDeclSpecs.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinAsm_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinAsm_ah__
#include "Puma/WinAsm.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMemberExplSpec_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMemberExplSpec_ah__
#include "Puma/WinMemberExplSpec.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinTypeKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinTypeKeywords_ah__
#include "Puma/WinTypeKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinFriend_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinFriend_ah__
#include "Puma/WinFriend.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtAC_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtAC_ah__
#include "Puma/ExtAC.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinIfExists_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinIfExists_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinIfExists_ah__
#include "Puma/WinIfExists.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinImportHandler_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinImportHandler_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinImportHandler_ah__
#include "Puma/WinImportHandler.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMacros_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMacros_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMacros_ah__
#include "Puma/WinMacros.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinAsm_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinAsm_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinAsm_ah__
#include "Puma/WinAsm.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinDeclSpecs_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinDeclSpecs_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinDeclSpecs_ah__
#include "Puma/WinDeclSpecs.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMemberExplSpec_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMemberExplSpec_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinMemberExplSpec_ah__
#include "Puma/WinMemberExplSpec.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinTypeKeywords_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinTypeKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinTypeKeywords_ah__
#include "Puma/WinTypeKeywords.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinFriend_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinFriend_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinFriend_ah__
#include "Puma/WinFriend.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtAC_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_SyntaxBuilder_ah__
#include "Puma/SyntaxBuilder.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtAC_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtAC_ah__
#include "Puma/ExtAC.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnu_ah__
#include "Puma/ExtGnu.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCInfos_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCInfos_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCInfos_ah__
#include "Puma/ExtGnuCInfos.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemantic_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemantic_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemantic_ah__
#include "Puma/ExtGnuCSemantic.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemExpr_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemExpr_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemExpr_ah__
#include "Puma/ExtGnuCSemExpr.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemDeclSpecs_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtACTree_ah__
#include "Puma/ExtACTree.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemDeclSpecs_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCSemDeclSpecs_ah__
#include "Puma/ExtGnuCSemDeclSpecs.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuCTree_ah__
#include "Puma/ExtGnuCTree.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_WinKeywords_ah__
#include "Puma/WinKeywords.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_ExtGnuKeywords_ah__
#include "Puma/ExtGnuKeywords.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#ifdef __ac_need__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnce_ah__
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnce_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnce_ah__
#include "Puma/PragmaOnce.ah"
#endif
#ifndef __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#define __ac_have__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_aspects_Puma_PragmaOnceUnitState_ah__
#include "Puma/PragmaOnceUnitState.ah"
#endif
#endif
#undef __ac_FIRST__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1__
#undef __ac_FIRST_FILE__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_inc_Puma_Config_h__
#endif // __ac_FIRST_FILE__build_aspectcX43X43X45ihI6BU_aspectcX43X43X452_1_Puma_genX45release_step1_inc_Puma_Config_h__