You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
漪綿 清烛 b62364572b
Update README.md
5 years ago
..
README.md Update README.md 5 years ago

README.md

Class ovo::info

info.version

This is a static string variable with the version info.

Return

  • string versionInfo The version infomation of this package.

Example

#include <iostream>
#include "ovo.h"

int main()
{
    ovo::info obj;
    std::cout << obj.version << endl;
    return 0;
}

The screen should show like this:

Version 0.0.1


info.hi()

This function can print a welcome info with a void return value.

Example

#include <iostream>
#include "ovo.h"

int main()
{
    ovo::info obj;
    obj.hi();
    return 0;
}

Expected screen:

Hellow OvO~


info.detail()

This function return with void, print detail info about this library.

Example

#include <iostream>
#include "ovo.h"

int main()
{
    ovo::info obj;
    obj.detail();
    return 0;
}

Expected screen:

Lib Name: ovo
Org: EEENeko (https://github.com/eeeNeko)
Author: Jianzhi Fan, Yimian Liu
license GNU General Public License 2.0
copyright Copyright (c) 2019 EEENeko