Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > b2a19b5ece87938821cde9a3e14e90b5 > files > 41

libsigc++-devel-1.2.7-8.fc12.x86_64.rpm

Okay here are the conventions for this project.

macros   - all caps (MY_MACRO)
enum     - same as macros

classes  - cap each word lower others (Signal)
private classes - same as class with underscore or trailing _ (BasicSignal_)

function - lowercase with underscore (foo_bar())
methods  - lowercase with underscore (m.foo_bar())
data     - lowercase (m.mydata)
private data - lowercase with trailing underscore (m.mydata_)

Namespaces are used where possible.  

Format is GNU or modified GNU (indent first bracket)

class MyClass
  { 
    MyClass();
  }