This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Created with IntelliJ IDEA. | |
| * User: Аляксандр | |
| * Date: 21.12.13 | |
| * Time: 8.27 | |
| * To change this template use File | Settings | File Templates. | |
| */ | |
| interface IInterval extends Cloneable, Comparable<IInterval>{ | |
| Number getBegin(); | |
| Number getEnd(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * Created with IntelliJ IDEA. | |
| * User: Аляксандр | |
| * Date: 20.12.13 | |
| * Time: 23.06 | |
| * To change this template use File | Settings | File Templates. | |
| */ | |
| interface ITuple extends Cloneable, Comparable<ITuple>{ | |
| public int getSize(); | |
| public int getSum(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Windows.h> | |
| #include <sstream> | |
| #include <fstream> | |
| #include "../../KWnd.h" | |
| int CopyDirTo(const std::wstring& source_folder, const std::wstring& target_folder); | |
| LRESULT CALLBACK WndProc (HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam); | |
| UINT time; | |
| #define TIMER 1 | |
| #define MS_TO_MINS 60000 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <math.h> | |
| #include <iterator> | |
| #include <vector> | |
| template <typename T> | |
| struct AccumTraits | |
| { | |
| typedef T TAccum; | |
| }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #ifndef _KWND.H_ | |
| #define _KWND.H_ | |
| #include <windows.h> | |
| #include <sstream> | |
| #include <vector> | |
| class KWnd | |
| { | |
| public: |
NewerOlder