This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 211189 - Linking header file to source file during edit
Summary: Linking header file to source file during edit
Status: NEW
Alias: None
Product: cnd
Classification: Unclassified
Component: -- Other -- (show other bugs)
Version: 7.1
Hardware: PC Linux
: P3 normal (vote)
Assignee: issues@cnd
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-04-13 23:57 UTC by CharlieHorse
Modified: 2012-04-13 23:57 UTC (History)
0 users

See Also:
Issue Type: ENHANCEMENT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description CharlieHorse 2012-04-13 23:57:59 UTC
When adding functions to a header file, the editor does not create shell functions in the source file while working in C++.

For instance add:
int Numerator(int Numerator_) const;
to the header should add:
int Rational::Numerator(int Numerator_) const
{
        return Numerator_;
}
to the source file