Answers for "classes in header file c++ example"

C++
1

c++ header files example

//headers 
#ifndef TOOLS_hpp 
#define TOOLS_hpp
#include<vector> 
#include<iostream>
#include<fstream>
#include<string>
using std::ifstream;
using std::cout; 
using std::cin;
using std::endl;
using std::cerr;
using std::vector;
using std::string;
// functions prototypes 
inline vector<int> merge(const vector<int>&a,const vector<int>& b);//merge function prototype with Formal Parameters 
std::vector<int> sort(size_t start, size_t length, const std::vector<int>& vec);//sort function prototype with formal parameters 
#endif
Posted by: Guest on December-18-2020
0

classes in header file c++ example

class Date
{
private:
    int m_year;
    int m_month;
    int m_day;

public:
    Date(int year, int month, int day)
    {
        setDate(year, month, day);
    }

    void setDate(int year, int month, int day)
    {
        m_year = year;
        m_month = month;
        m_day = day;
    }

    int getYear() { return m_year; }
    int getMonth() { return m_month; }
    int getDay()  { return m_day; }
};
Posted by: Guest on September-15-2021

Browse Popular Code Answers by Language