repo_name
stringlengths
6
97
path
stringlengths
3
341
text
stringlengths
8
1.02M
GiulioPN/bnlm
src/hpyplm.h
#ifndef HPYPLM_H_ #define HPYPLM_H_ #include <vector> #include <unordered_map> #include "m.h" #include "random.h" #include "crp.h" #include "tied_parameter_resampler.h" #include "uvector.h" #include "uniform_vocab.h" // A not very memory-efficient implementation of an N-gram LM based on PYPs // as described in <NAM...
GiulioPN/bnlm
src/mf_crp.h
<gh_stars>1-10 #ifndef _CPYP_MF_CRP_H_ #define _CPYP_MF_CRP_H_ #include <iostream> #include <numeric> #include <cassert> #include <cmath> #include <utility> #include <unordered_map> #include <functional> #include "random.h" #include "slice_sampler.h" #include "crp_table_manager.h" #include "m.h" namespace cpyp { // ...
GiulioPN/bnlm
src/tied_parameter_resampler.h
#ifndef _TIED_RESAMPLER_H_ #define _TIED_RESAMPLER_H_ #include <set> #include <vector> #include "random.h" #include "slice_sampler.h" #include "m.h" namespace cpyp { // Tie together CRPs that are conditionally independent given their // hyperparameters. template <class CRP> struct tied_parameter_resampler { explic...
GiulioPN/bnlm
src/shpyplm.h
<gh_stars>1-10 #ifndef SHPYPLM_H_ #define SHPYPLM_H_ #include <vector> #include <unordered_map> #include "hpyplm.h" #include "random.h" namespace cpyp { template <unsigned N> class SPYPLM { private: PYPLM<N> shared_lm; //!< shared Pitman-Yor for LM std::vector<PYPLM<N>> local_lm; //!< local Pitman-Yor process ...
GiulioPN/bnlm
src/corpus.h
#ifndef CPYPDICT_H_ #define CPYPDICT_H_ #include <string> #include <iostream> #include <cassert> #include <fstream> #include <vector> #include <set> #include <unordered_map> #include <functional> namespace cpyp { class Dict { typedef std::unordered_map<std::string, unsigned, std::hash<std::string> > Map; public: ...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.6/newsApp/ELBArticulo.h
<reponame>miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind- // // ELBArticulo.h // newsApp // // Created by <NAME> on 13/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> @interface ELBArticulo : NSManagedObject @property (nonat...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBFechaViewController.h
<gh_stars>0 // // ELBFechaViewController.h // newsApp // // Created by <NAME> on 17/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBFechaViewController : UIViewController @property (nonatomic,weak) UIViewController * delegate; // también ok: id delegate ...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBAppDelegate.h
// // ELBAppDelegate.h // newsApp // // Created by <NAME> on 06/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBAppDelegate : UIResponder <UIApplicationDelegate> @property (strong, nonatomic) UIWindow *window; @end
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsAppTests/newsAppTests.h
<filename>newsApp 1.9/newsAppTests/newsAppTests.h // // newsAppTests.h // newsAppTests // // Created by <NAME> on 06/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import <XCTest/XCTest.h> @interface newsAppTests : XCTestCase @end
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.4/newsApp/ELBDetalleArticuloViewController.h
<filename>newsApp 1.4/newsApp/ELBDetalleArticuloViewController.h // // ELBDetalleArticuloViewController.h // newsApp // // Created by <NAME> on 09/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBDetalleArticuloViewController : UIViewController - (void) s...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.0/newsApp/ELBNoticiasTableViewController.h
<filename>newsApp 1.0/newsApp/ELBNoticiasTableViewController.h // // ELBNoticiasTableViewController.h // newsApp // // Created by <NAME> on 30/04/14. // Copyright (c) 2014 Espí & Le Barbier. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBNoticiasTableViewController : UITableViewController @end
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.7/newsApp/ELBDetalleArticuloViewController.h
// // ELBDetalleArticuloViewController.h // newsApp // // Created by <NAME> on 09/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @class ELBArticulo; @interface ELBDetalleArticuloViewController : UIViewController @property (strong, nonatomic) IBOutlet UITextView *art...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBLocalizacionViewController.h
// // ELBLocalizacionViewController.h // newsApp // // Created by <NAME> on 20/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import <MapKit/MapKit.h> @interface ELBLocalizacionViewController : UIViewController <MKMapViewDelegate,CLLocationManagerDelegate> @property (...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBAnotacion.h
<reponame>miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-<filename>newsApp 1.9/newsApp/ELBAnotacion.h // // ELBAnotacion.h // newsApp // // Created by <NAME> on 20/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <MapKit/MapKit.h> @interface ELBAnotacion : NSObject <MKAnnotation> -...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/STTwitter/STTwitterOAuth.h
// // STTwitterRequest.h // STTwitterRequests // // Created by <NAME> on 9/5/12. // Copyright (c) 2012 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> #import "STTwitterOAuthProtocol.h" /* Based on the following documentation http://oauth.net/core/1.0/ https://dev.twitter.com/docs/auth/author...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBNoticiasViewController.h
<filename>newsApp 1.9/newsApp/ELBNoticiasViewController.h // // ELBNoticiasViewController.h // newsApp // // Created by <NAME> on 09/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBNoticiasViewController : UIViewController <UIPickerViewDataSource, UIPicker...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBTwitterAPIClient.h
// // ELBTwitterAPIClient.h // // // Created by <NAME> on 13/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import "STTwitterAPIWrapper.h" @interface ELBTwitterAPIClient : STTwitterAPIWrapper + (STTwitterAPIWrapper *)twitterAPIApplicationOnlyWithConsumerKey; @end
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBTwitterTableViewController.h
// // ELBTwitterTableViewController.h // newsApp // // Created by <NAME> on 18/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBTwitterTableViewController : UITableViewController @end
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.5/newsApp/Factura.h
<gh_stars>0 // // Factura.h // newsApp // // Created by <NAME> on 08/05/14. // Copyright (c) 2014 Espí & Le Barbier. All rights reserved. // #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> @class Cliente; @interface Factura : NSManagedObject @property (nonatomic, retain) NSNumber * codigo; @prop...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBStore.h
<reponame>miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind- // // ELBStore.h // newsApp // // Created by <NAME> on 20/01/13. // Copyright (c) 2013 <NAME>. All rights reserved. // #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> extern NSString *const kExceptionRaise; extern NSString *const kExcep...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
funnyApp 1.3/funnyApp/ELBMovimientoViewController.h
<reponame>miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-<gh_stars>0 // // ELBMovimientoViewController.h // funnyApp // // Created by <NAME> on 14/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBMovimientoViewController : UIViewController @property (s...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBArticulosTableViewController.h
<filename>newsApp 1.9/newsApp/ELBArticulosTableViewController.h // // ELBArticulosTableViewController.h // newsApp // // Created by <NAME> on 17/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBArticulosTableViewController : UITableViewController @end
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/STTwitter/STTwitterAPIWrapper.h
<filename>newsApp 1.9/STTwitter/STTwitterAPIWrapper.h /* Copyright (c) 2012, <NAME> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.5/newsApp/Cliente.h
// // Cliente.h // newsApp // // Created by <NAME> on 08/05/14. // Copyright (c) 2014 Espí & Le Barbier. All rights reserved. // #import <Foundation/Foundation.h> #import <CoreData/CoreData.h> @interface Cliente : NSManagedObject @property (nonatomic, retain) NSString * nif; @property (nonatomic, retain) NSStri...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.2/newsApp/ELBListaPeriodicosTableViewController.h
<reponame>miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-<gh_stars>0 // // ELBListaPeriodicosTableViewController.h // newsApp // // Created by <NAME> on 12/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import <UIKit/UIKit.h> @interface ELBListaPeriodicosTableViewController : UITable...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
funnyApp 1.3/funnyApp/ELBRotateTabBarController.h
<reponame>miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-<gh_stars>0 // // ELBRotateTabBarController.h // funnyApp // // Created by <NAME> on 14/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import <UIKit/UIKit.h> //@interface ELBRotateTabBarController : UITabBarController @interfa...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBDetalleArticuloViewController.h
<gh_stars>0 // // ELBDetalleArticuloViewController.h // newsApp // // Created by <NAME> on 09/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> #import <MessageUI/MessageUI.h> @class ELBArticulo; @interface ELBDetalleArticuloViewController : UIViewController <MFMailComp...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
funnyApp 1.3/funnyAppTests/funnyAppTests.h
// // funnyAppTests.h // funnyAppTests // // Created by <NAME> on 08/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <XCTest/XCTest.h> @interface funnyAppTests : XCTestCase @end
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.5/newsApp/ELBArticuloViewController.h
// // ELBArticuloViewController.h // newsApp // // Created by <NAME> on 09/06/13. // Copyright (c) 2013 Espí & <NAME>. All rights reserved. // #import <UIKit/UIKit.h> @class ELBArticulo; @interface ELBArticuloViewController : UIViewController @property (strong, nonatomic) IBOutlet UITextField *nombreEscritorTex...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/newsApp/ELBPost.h
// // ELBPost.h // // // Created by <NAME> on 13/06/13. // Copyright (c) 2013 Espí & Le Barbier. All rights reserved. // #import <Foundation/Foundation.h> #define MAX_POSTS 20 @interface ELBPost : NSObject @property (readonly) NSString *iden; @property (readonly) NSString *texto; @property (readonly) NSDate *...
miguelgutierrez/Curso-iOS-ObjC-Programming-Netmind-
newsApp 1.9/STTwitter/STTwitterOAuthOSX.h
<gh_stars>1-10 // // MGTwitterEngine+TH.h // TwitHunter // // Created by <NAME> on 5/1/10. // Copyright 2010 <EMAIL>. All rights reserved. // #import <Foundation/Foundation.h> #import "STTwitterOAuthProtocol.h" #if TARGET_OS_IPHONE #else typedef void (^STTE_completionBlock_t)(NSArray *statuses); typedef void (^S...
MuthuvelKaruppanaGounder/OCDMI
IMediaSessionSystem.h
<reponame>MuthuvelKaruppanaGounder/OCDMI<gh_stars>1-10 /* * Copyright 2018 Metrological * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2...
MuthuvelKaruppanaGounder/OCDMI
Report.h
/* * Copyright 2018 Metrological * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
MuthuvelKaruppanaGounder/OCDMI
MediaRequest.h
/* * Copyright 2018 Metrological * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to...
kkkon/test_cef
test_cef_app/cef_client.h
<reponame>kkkon/test_cef /** * The MIT License * * Copyright (C) 2017 <NAME> * * 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 r...
Miladxsar23/terminal-regular-command-with-javascript-and-cpp
stat/stat-cpp/checktype.h
#include <iostream> #include <sys/types.h> using namespace std; string typeOfFile(int mode) { if(S_ISREG(mode)) { return "regular File"; }else if(S_ISDIR(mode)) { return "directory File"; }else { return "special File"; } }
agrishutin/teambook
contrib/su4/cpp2tex/include/data/set.h
/* * This file [data/set.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, o...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/utilities.h
/* * This file [basic/utilities.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Lic...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/byte_array.h
/* * This file [basic/byte_array.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Li...
agrishutin/teambook
contrib/su4/cpp2tex/include/sql/query.h
/* * This file [sql/query.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, ...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/types.h
<gh_stars>10-100 /* * This file [basic/types.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/random_lcg.h
#pragma once #include "../basic/string.h" #include "../basic/types.h" namespace tamias { namespace wtf { class LCGRandom { public: LCGRandom( uinttype64 seed = 0 ); ~LCGRandom(); void setSeed( uinttype64 seed ); uinttype32 next(); String nextToken( sizetype l...
agrishutin/teambook
contrib/su4/cpp2tex/include/network/socket.h
<reponame>agrishutin/teambook<filename>contrib/su4/cpp2tex/include/network/socket.h<gh_stars>10-100 /* * This file [network/socket.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU ...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/byte_queue.h
<reponame>agrishutin/teambook /* * This file [data/byte_queue.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundatio...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/web_utilities.h
<filename>contrib/su4/cpp2tex/include/wtf/web_utilities.h<gh_stars>10-100 #pragma once #include "../basic/byte_array.h" #include "../basic/string.h" #include "../basic/types.h" namespace tamias { namespace wtf { namespace web { namespace utilities { String decodeURIString( const ByteAr...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/debug.h
<gh_stars>10-100 /* * libtamias/wtf/debug.h — package for debug output */ #pragma once /* * About debug levels. * Normally debug levels are numbered from 0 (no output) to n-1 (full output) for some n. * So if output device accept level x it would receive all debug with level less or equal to x. * Nothing cat st...
agrishutin/teambook
contrib/su4/cpp2tex/include/system/thread_implementation.h
/* * This file [system/thread_implementation.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version...
agrishutin/teambook
contrib/su4/cpp2tex/include/sql/driver.h
<reponame>agrishutin/teambook /* * This file [sql/driver.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; ei...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/terve_generator.h
#pragma once #include "../basic/byte_array.h" #include "../basic/string.h" #include "../basic/types.h" #include "../data/pair.h" #include "../main/map.h" #include "../main/tree_rbst.h" #include "../main/vector.h" #include "../io/file.h" #include "../io/scanner.h" #include "../wtf/utilities.h" #include "../wtf/terve_en...
agrishutin/teambook
contrib/su4/cpp2tex/include/io/file.h
/* * This file [io/file.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/iterator.h
/* * This file [basic/iterator.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Lice...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/generic_exception.h
/* * This file [basic/generic_exception.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/array_implementation.h
/* * This file [data/array.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License,...
agrishutin/teambook
contrib/su4/cpp2tex/include/io/printer.h
/* * This file [io/printer.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License,...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/thread.h
<reponame>agrishutin/teambook<gh_stars>10-100 /* * This file [basic/thread.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Softw...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/abstract_data.h
/* * This file [basic/abstract_data.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/xml_data.h
<gh_stars>10-100 #pragma once namespace tamias { namespace wtf { namespace xml { class Data; // provides common access to base string } } } #include "../basic/string.h" #include "../basic/types.h" #include "../data/flyweight.h" class tamias::wtf::xml::Data : private Flyweight <String> { public: ...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/xml_element.h
#pragma once namespace tamias { namespace wtf { namespace xml { class Element; } } } #include "../data/map.h" #include "../data/tree_rbst.h" #include "../data/vector.h" #include "../wtf/xml_string.h" class tamias::wtf::xml::Element { public: Element(); Element( Element const &element ); ...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/sax_parser.h
<gh_stars>10-100 #pragma once namespace tamias { namespace wtf { namespace sax { class Parser; } } } #include "../data/vector.h" #include "../wtf/sax_callback.h" class tamias::wtf::sax::Parser { public: explicit Parser( Callback &callback ); ~Parser(); void parse( String const &docum...
agrishutin/teambook
contrib/su4/cpp2tex/include/network/ip.h
/* * This file [network/ip.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License,...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/flyweight.h
/* * This file [data/flyweight.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Lice...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/time.h
<gh_stars>10-100 /* * This file [basic/time.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version ...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/xml_string.h
#pragma once namespace tamias { namespace wtf { namespace xml { class String; // string as a substring of one big } } } #include "../basic/types.h" #include "../wtf/xml_data.h" class tamias::wtf::xml::String { public: String(); String( Data const &data, sizetype start, sizetype length ); ...
agrishutin/teambook
contrib/su4/cpp2tex/include/system/socket.h
/* * This file [system/socket.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Licen...
agrishutin/teambook
contrib/su4/cpp2tex/include/system/thread.h
/* * This file [system/thread.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Licen...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/set_implementation.h
<filename>contrib/su4/cpp2tex/include/data/set_implementation.h /* * This file [data/set_implementation.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as p...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/sax_callback.h
#pragma once namespace tamias { namespace wtf { namespace sax { class Callback; } } } #include "../basic/string.h" class tamias::wtf::sax::Callback { protected: Callback(); virtual ~Callback(); virtual void start(); virtual void finish(); virtual void elementBegin( String con...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/web_server.h
<gh_stars>10-100 #pragma once #include "../basic/byte_array.h" #include "../basic/string.h" #include "../basic/types.h" #include "../io/printer.h" #include "../io/scanner.h" #include "../main/map.h" #include "../main/tree_rbst.h" #include "../main/vector.h" #include "../wtf/utilities.h" #include "../wtf/web_cookies.h"...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/string.h
<gh_stars>10-100 /* * This file [basic/string.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either versio...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/iterator_implementation.h
<filename>contrib/su4/cpp2tex/include/basic/iterator_implementation.h /* * This file [basic/iterator_implementation.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public ...
agrishutin/teambook
contrib/su4/cpp2tex/include/io/string_stream.h
/* * This file [io/string_stream.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Li...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/pair.h
/* * This file [main/pair.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, ...
agrishutin/teambook
contrib/su4/cpp2tex/include/sql/connection.h
<filename>contrib/su4/cpp2tex/include/sql/connection.h /* * This file [sql/connection.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/xml_tag.h
#pragma once namespace tamias { namespace wtf { namespace xml { class Tag; } } } #include "../wtf/xml_string.h" class tamias::wtf::xml::Tag { public: enum Type { TYPE_NOTAG, TYPE_OPEN, TYPE_CLOSE, TYPE_EMPTY, TYPE_COMMENT, TYPE_SPECIAL }; Tag( Type type, String const& name, Stri...
agrishutin/teambook
contrib/su4/cpp2tex/include/main/tree_rbst.h
/* * This file [main/tree_rbst.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Lice...
agrishutin/teambook
contrib/su4/cpp2tex/include/system/event_poll.h
/* * This file [system/event_poll.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the L...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/queue_implementation.h
<reponame>agrishutin/teambook /* * This file [data/queue_implementation.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/xml_parser.h
#pragma once namespace tamias { namespace wtf { namespace xml { namespace hidden { class Symbol; class Reader; } class Parser; } } } #include "../basic/string.h" #include "../basic/types.h" //#include "../data/pair.h" //#include "../data/stack.h" //#include "../wtf/xml_el...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/arguments.h
<filename>contrib/su4/cpp2tex/include/wtf/arguments.h /* * tamias/wtf/arguments.h — package for parsing commad-line parameters */ #pragma once // TODO: locale support. WTF? #include "../basic/string.h" #include "../basic/types.h" #include "../data/pair.h" #include "../io/file.h" #include "../io/printer.h" #include...
agrishutin/teambook
contrib/su4/cpp2tex/include/main/vector.h
/* * This file [main/vector.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License...
agrishutin/teambook
contrib/su4/cpp2tex/include/main/set.h
/* * This file [main/set.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, o...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/exception.h
/* * This file [basic/exception.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Lic...
agrishutin/teambook
contrib/su4/cpp2tex/include/basic/date.h
/* * This file [basic/date.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License,...
agrishutin/teambook
contrib/su4/cpp2tex/include/main/random_lcg.h
<reponame>agrishutin/teambook<filename>contrib/su4/cpp2tex/include/main/random_lcg.h /* * This file [main/random_lcg.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/pair_implementation.h
/* * This file [data/pair_implementation.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 o...
agrishutin/teambook
contrib/su4/cpp2tex/include/io/iodevice.h
/* * This file [io/iodevice.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/web_captcha.h
#pragma once #include <cstdlib> #include "../basic/byte_array.h" #include "../basic/exception.h" #include "../basic/string.h" #include "../basic/types.h" #include "../data/pair.h" #include "../main/vector.h" namespace tamias { namespace wtf { namespace web { class Captcha { public: ...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/terve_entity.h
<reponame>agrishutin/teambook #pragma once #include "../basic/types.h" namespace tamias { namespace wtf { namespace terve { class Entity { public: enum Type { ENTITY_EMPTY, ENTITY_TEXT, ENTITY_I18N, ENTITY_LINE, ENTITY_GROUP }; Entity...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/web_cookies.h
<reponame>agrishutin/teambook<gh_stars>10-100 #pragma once #include "../basic/date.h" #include "../basic/string.h" #include "../basic/time.h" #include "../basic/types.h" #include "../basic/utilities.h" #include "../io/printer.h" #include "../wtf/web_utilities.h" namespace tamias { namespace wtf { namespace we...
agrishutin/teambook
contrib/su4/cpp2tex/include/wtf/utilities.h
/* * libtamias/wtf/utilities.h — some useful functions */ #pragma once #include "../basic/byte_array.h" #include "../basic/string.h" #include "../basic/types.h" #include "../main/vector.h" namespace tamias { namespace wtf { namespace utilities { Vector <String> splitString( const String &source, ...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/vector.h
/* * This file [data/vector.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License...
agrishutin/teambook
contrib/su4/cpp2tex/include/main/algorithm.h
/* * This file [main/algotrithm.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Lic...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/map_implementation.h
/* * This file [data/map_implementation.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/stack.h
/* * This file [data/stack.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License,...
agrishutin/teambook
contrib/su4/cpp2tex/include/io/ioexception.h
/* * This file [io/ioexception.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the Lice...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/stack_implementation.h
<filename>contrib/su4/cpp2tex/include/data/stack_implementation.h<gh_stars>10-100 /* * This file [data/stack.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License...
agrishutin/teambook
contrib/su4/cpp2tex/include/data/tree_rbst_implementation.h
<gh_stars>10-100 /* * This file [data/tree_rbst_implementation.h] is part of the “libtamias” library * Copyright (c) 2007-2010 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundati...
agrishutin/teambook
contrib/su4/cpp2tex/include/main/map.h
/* * This file [main/map.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, o...
agrishutin/teambook
contrib/su4/cpp2tex/include/main/xml.h
<filename>contrib/su4/cpp2tex/include/main/xml.h /* * This file [main/xml.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Softwa...
agrishutin/teambook
contrib/su4/cpp2tex/include/io/scanner.h
<reponame>agrishutin/teambook<gh_stars>10-100 /* * This file [io/scanner.h] is part of the “libtamias” library * Copyright (c) 2007-2009 <NAME>, <NAME> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Softwar...