Book a Demo

Author Topic: Synchronizing notes in C++  (Read 2539 times)

sdj

  • EA Novice
  • *
  • Posts: 1
  • Karma: +0/-0
  • I love YaBB 1G - SP1!
    • View Profile
Synchronizing notes in C++
« on: February 15, 2005, 01:57:31 am »
Is it possible to reposition the class notes section and keep them synchronized? For example, I would like to have the notes section at the top of the .h file and not just before the class declaration like in the code below.
If the notes section is not immediatly before the class declaration the syncronization does not work.

/**
* This is a test.  
*
* @version 1.0
* @updated 15-Feb-2005 09:45:06
*/
#if !defined(EA_DC5A9206_7DE2_4714_A7D2_0B1E3A5EBDF0__INCLUDED_)
#define EA_DC5A9206_7DE2_4714_A7D2_0B1E3A5EBDF0__INCLUDED_

#include "Base.h"

class CTestClass : public CBase
{

public:

CTestClass();

virtual ~CTestClass();

};

Eve

  • EA Administrator
  • EA Guru
  • *****
  • Posts: 8110
  • Karma: +119/-20
    • View Profile
Re: Synchronizing notes in C++
« Reply #1 on: February 15, 2005, 01:43:31 pm »
EA doesn't synchronise the file header comment.  It synchronises the comment immediately before the class declaration because it interperets that as belonging to the class.

Simon