Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
André L. Maravilha committed Sep 21, 2017
1 parent 160db75 commit d65e830
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 0 deletions.
27 changes: 27 additions & 0 deletions example/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
cmake_minimum_required(VERSION 3.1)
project(cxxtimer-example)


# ==============================================================================
# C++ standard

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_EXTENSIONS OFF)


# ==============================================================================
# Paths to search for headers

include_directories(../)


# ==============================================================================
# Source files

set(SOURCE_FILES example.cpp)


# ==============================================================================
# Targets

add_executable(example ${SOURCE_FILES})
54 changes: 54 additions & 0 deletions example/example.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
MIT License
Copyright (c) 2017 André L. Maravilha
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/


#include "cxxtimer.hpp"
#include <iostream>
#include <string>

int main(int argc, char** argv) {

// Instantiate cxxtimer::Timer object
cxxtimer::Timer timer;

// Start the timer
timer.start();

// Wait for the users
std::string input_1;
std::cout << "Please, type something and press ENTER to continue: ";
std::getline(std::cin, input_1);

// Stop/pause the timer
timer.stop();

// Get the elapsed time
std::cout << "You took " << timer.count<std::chrono::seconds>() << " seconds." << std::endl;
std::cout << "You took " << timer.count<std::chrono::milliseconds>() << " milliseconds." << std::endl;
std::cout << "You took " << timer.count<std::chrono::nanoseconds>() << " nanoseconds." << std::endl;

return 0;
}

0 comments on commit d65e830

Please sign in to comment.