2012年4月14日 星期六

買婚紗or禮服

Tammy World花嫁世界
地址:中和捷運路93號5樓(南勢角捷運站2號出口對面大樓)
電話:0988-263899 電話預約

秘密花園自助婚紗
地址:台北市金華街162-3號8樓
電話:0932-214583 或 (02)2397-0508 電話預約

方媽媽
地址:台北市晉江街155號地下室
電話:(02)2368-4469

FIONA-LAI 婚紗禮服設計
地址:永和市中和路519巷10號1樓(永安市場捷運站前)
電話:(02)8921-3986 電話預約

蒂亞二手禮服
地址:台北市萬大路97號

迦拿喜多坊
地址:台北縣板橋市民族路60號3F
電話:02-89514700

奧莉薇二手婚紗
地址:中山北路二段130號
電話:2561-1416

西門町獅子林二樓

喜上囍婚紗精品
104台北市中山區中山北路三段30號
Tel : 02-2592-6467


2012年2月15日 星期三

gcc compiler options

http://gcc.gnu.org/onlinedocs/gcc-4.2.2/gcc/Option-Summary.html#Option-Summary

C++ tips - inclusion rule

C++ INCLUDE Rule : Use forward declaration when possible

Suppose you want to define a new class B that uses objects of class A.
  1. B only uses references or pointers to A. Use forward declaration then : you don't need to include . This will in turn speed a little bit the compilation.
    class A ;
      
      class B {
        private:
          A* fPtrA ;
        public:
          void mymethod(const& A) const ;
      } ;
      
  2. B derives from A or B explicitely (or implicitely) uses objects of class A. You then need to include 
    #include 
      
      class B : public A {
      
      } ;
      
      class C {
        private:
          A fA ;
        public:
          void mymethod(A par) ;   
      }