Answers for "c++ header function definition"

C++
2

what is a header in c++

// my_class.h
#ifndef MY_CLASS_H // include guard
#define MY_CLASS_H

namespace N
{
    class my_class
    {
    public:
        void do_something();
    };
}

#endif /* MY_CLASS_H */
Posted by: Guest on May-17-2020
-1

how to declare a function in c++ header file

//somefile.h
#ifndef SOMEFILE_H
#define SOMEFILE_H
int add(int a, int b);
#endif
Posted by: Guest on August-20-2021

Browse Popular Code Answers by Language