Skip to content

Instantly share code, notes, and snippets.

View Maximaximum's full-sized avatar
💭
Слава Україні! 🇺🇦

Maksym Kobieliev Maximaximum

💭
Слава Україні! 🇺🇦
View GitHub Profile

Генератор документів

Застосунок для генерування документів на основі шаблону Google Docs™ та таблиці даних Google Sheets™.

Для використання, у файлі шаблону вставте місцетримачі (placeholders) у форматі {{Назва аркуша.Назва поля}}, де "Назва аркуша" - назва аркуша у файлі таблиці даних, а "Назва поля" - значення комірки у стовпчику A (перший зліва), з ряду якого слід взяти значення у стовпчику B. Кінцевий згенерований файл матиме вміст, скопійований із файлу шаблону, але замість місцетримачів він міститиме відповідні значення з таблиці.

Updated at 2022-07-20

Генератор документів. ("we," "our," or "us") is committed to protecting your privacy. This Privacy Policy explains how your personal information is collected, used, and disclosed by Генератор документів. This Privacy Policy applies to our application named Генератор документів , and its associated subdomains (collectively, our "Service"). By accessing or using our Service, you signify that you have read, understood, and agree to our collection, storage, use, and disclosure of your personal information as described in this Privacy Policy and our Terms of Service.

Definitions and key terms For this Privacy Policy:

Terms & Conditions Updated at 2022-07-20

General Terms By accessing and placing an order with , you confirm that you are in agreement with and bound by the terms of service contained in the Terms & Conditions outlined below. These terms apply to the entire website and any email or other type of communication between you and .

Under no circumstances shall team be liable for any direct, indirect, special, incidental or consequential damages, including, but not limited to, loss of data or profit, arising out of the use, or the inability to use, the materials on this site, even if team or an authorized representative has been advised of the possibility of such damages. If your use of materials from this site results in the need for servicing, repair or correction of equipment or data, you assume any costs thereof.

Add-on author will not be responsible for any outcome that may occur during the course of usage of our resources. We reserve the rights to change prices and revise the resources usage policy in any

data:image/svg+xml;charset=utf-8,%3Csvg%20%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20viewBox%3D%220%200%20128%20128%22%20id%3D%22ems_folder%22%3E%3Cpath%20d%3D%22M108%20103.1H21c-3.2%200-5.8-2.6-5.8-5.8V27.7c0-3.2%202.6-5.8%205.8-5.8h21.8c1.5%200%203%20.6%204.1%201.7l7%207H108c3.2%200%205.8%202.6%205.8%205.8v60.9c0%203.2-2.6%205.8-5.8%205.8zM26.7%2091.5h75.4V42.2H51.4c-1.5%200-3-.6-4.1-1.7l-7-7H26.7v58z%22%2F%3E%3C%2Fsvg%3E
#include <iostream>
using namespace std;
class Line
{
public:
void setLength( double len );
double getLength( void );
Line(double len); // This is the constructor
#include <iostream>
using namespace std;
class Line
{
public:
void setLength( double len );
double getLength( void );
Line(); // This is the constructor declaration
#include <iostream>
using namespace std;
class Line
{
public:
void setLength( double len );
double getLength( void );
Line(); // This is the constructor
#include <iostream>
using namespace std;
class Box
{
public:
double length;
void setWidth( double wid );
double getWidth( void );