00001 /* 00002 * F.h 00003 * testDoxygen 00004 * 00005 * Created by Steen Parl on Wed Mar 17 2004. 00006 * Copyright (c) 2004 Signatron Technology Corporation. All rights reserved. 00007 * 00008 */ 00009 #pragma once 00010 00012 struct F 00013 { 00014 int f_int; //< An integer in F. 00015 }; 00016 00018 template <class W> 00019 class F_W : public W, public F 00020 { int fw_int; //< An integer in F_W. 00021 public: 00022 F_W(int); 00023 00024 };