File: markreadthread.h

package info (click to toggle)
newsbeuter 2.9-5%2Bdeb9u2
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 4,692 kB
  • ctags: 3,693
  • sloc: cpp: 18,663; ruby: 1,797; xml: 350; sh: 199; makefile: 171; perl: 101
file content (24 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef MARKREADTHREAD_H_
#define MARKREADTHREAD_H_

#include <thread>
#include <ttrss_api.h>

namespace newsbeuter {

class controller;

class markreadthread {
	public:
		markreadthread( ttrss_api* r_api, const std::string& guid, bool read );
		virtual ~markreadthread();
		void operator()();
	private:
		ttrss_api* _r_api;
		const std::string& _guid;
		bool _read;
};

}

#endif /*MARKREADTHREAD_H_*/